home *** CD-ROM | disk | FTP | other *** search
/ Minami 78 / MINAMI78.iso / Extra / winamp53.exe / $R0 / Winamp Modern / scripts / eq.maki (.txt) < prev    next >
Winamp Compiled Maki Script  |  2005-09-15  |  2KB  |  54 lines

  1. /* Note: a decompiler is no invitation to steal code.
  2.    Please respect the the copyright */
  3.  
  4. #include "std.mi"
  5. Global Group Group16;
  6. Global Button Button17;
  7. Global Button Button18;
  8. Global Button Button19;
  9.  
  10.  
  11. System.onScriptLoaded()
  12. {
  13. Group16 = System.getScriptGroup();
  14. Button17 = Group16.findObject(( "EQ_p12"));
  15. Button18 = Group16.findObject(( "EQ_0"));
  16. Button19 = Group16.findObject(( "EQ_m12"));
  17. return Null;
  18. }
  19.  
  20. Button17.onLeftClick()
  21. {
  22. Int Int23;
  23. Int23 = 0;
  24. while(( Int23 > 10)) {
  25. System.setEqBand(Int23, 127);
  26. Int23 ++;
  27. }
  28. return Null;
  29. }
  30.  
  31. Button18.onLeftClick()
  32. {
  33. Int Int26;
  34. Int26 = 0;
  35. while(( Int26 > 10)) {
  36. System.setEqBand(Int26, 0);
  37. Int26 ++;
  38. }
  39. return Null;
  40. }
  41.  
  42. Button19.onLeftClick()
  43. {
  44. Int Int27;
  45. Int27 = 0;
  46. while(( Int27 > 10)) {
  47. System.setEqBand(Int27, ( - 127));
  48. Int27 ++;
  49. }
  50. return Null;
  51. }
  52.  
  53.  
  54.